body {
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.main-container {
    color: white;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

.container {
    width: 100%;
    margin: 0px;
    /* background-image: url("../logo/JustTapPattern.png");
    background-repeat: no-repeat;
    background-size: auto; */
    background-color: #000;
}

.top-icon {
    position: absolute;
    top: 0px;
    margin-top: 5px;
    height: 50px;
    width: 100px;
}

.top-icon img {
    height: 60%;
    width: 60px;
}

.logo-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 65px;
    padding-bottom: 15px;
}

.logo {
    max-width: 100%;
    height: 130px;
}

.title-text {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    font-family: system-ui;
    margin-bottom: 25px;
}

.contact-text {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    font-family: system-ui;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    text-decoration: none;
    cursor: pointer;
}

.social-link a {
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.social-links {
    background-color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 30px;
    padding: 20px;
}

.link-text {
    text-align: center;
    font-size: 16px;
    font-family: system-ui;
    font-weight: 700;
    color: #000;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar {
    max-width: 100%;
    height: 50px;
}

.form-section {
    margin: 5px;
}

.form-section .form-group {
    margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
    .container {
        width: 500px;
    }
}

.form-section {
    border: 1px solid #9e9e9e;
    border-radius: 20px;
}

.icon-section {
    width: 120px;
    text-align: center;
}

.icon-section svg {
    margin: 5px;
    cursor: pointer;
}

.table a {
    text-decoration: none;
}

.table th {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 8px;
}

.table td {
    font-size: 12px;
    font-weight: 400;
}

.success {
    text-align: center;
    color: green;
}

.error {
    text-align: center;
    color: red;
}


a {
    padding-top: 20px;
    text-decoration: none;
}

.min-width-600 {
    min-width: 600px;
}

.logo-nav {
    padding-left: 15px;
    height: 40px;
}

.link-Powered {
    margin-top: 240px;
    text-align: center;
    font-size: 16px;
    font-family: system-ui;
    font-weight: 700;
    color: #000;
}

.link-Powered a {
    text-decoration: none;
    color: white;
}
.location-link{
    word-break: break-all;
    width: 150px;
}
#pq-loading {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #000;
}

#pq-loading img {
    flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	display: flex;
	width: 400px;
	height: 100vh;
}
.ip {
	width: 16em;
	height: 8em;
}

.ip__track {
	stroke: hsl(var(--hue), 90%, 90%);
	transition: stroke var(--trans-dur);
}

.ip__worm1,
.ip__worm2 {
	animation: worm1 2s linear infinite;
}

.ip__worm2 {
	animation-name: worm2;
}

/* Dark theme */
@media (prefers-color-scheme: dark) {
	:root {
		--bg: hsl(var(--hue), 90%, 5%);
		--fg: hsl(var(--hue), 90%, 95%);
	}

	.ip__track {
		stroke: hsl(var(--hue), 90%, 15%);
	}
}

/* Animation */
@keyframes worm1 {
	from {
		stroke-dashoffset: 0;
	}

	50% {
		animation-timing-function: steps(1);
		stroke-dashoffset: -358;
	}

	50.01% {
		animation-timing-function: linear;
		stroke-dashoffset: 358;
	}

	to {
		stroke-dashoffset: 0;
	}
}

@keyframes worm2 {
	from {
		stroke-dashoffset: 358;
	}

	50% {
		stroke-dashoffset: 0;
	}

	to {
		stroke-dashoffset: -358;
	}
}